home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr29 / zs103e.zip / ZSNEW.INF (.txt) < prev    next >
OS/2 Help File  |  1995-03-18  |  28KB  |  436 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. ZipStream ΓòÉΓòÉΓòÉ
  3.  
  4.  
  5. ΓòÉΓòÉΓòÉ 2. Copyright ΓòÉΓòÉΓòÉ
  6.  
  7. Copyright (C) Carbon Based Software  1993 - 1995.  All Rights Reserved. 
  8.  
  9. No part of this publication may be reproduced, stored in a retrieval system or 
  10. transmitted in any form or by any means, electronic, mechanical, chemical, 
  11. photocopy, recording or otherwise without the prior written permission of 
  12. Carbon Based Software. 
  13.  
  14.  
  15. ΓòÉΓòÉΓòÉ 3. What's New ΓòÉΓòÉΓòÉ
  16.  
  17. This section describes new features and functions that have been incorporated 
  18. into ZipStream since the last major release. 
  19.  
  20.  
  21. ΓòÉΓòÉΓòÉ 3.1. New Compression Options ΓòÉΓòÉΓòÉ
  22.  
  23. This release of ZipStream contains new compression and cacheing algorithms that 
  24. significantly improve performance in cases where the existing algorithms have 
  25. suffered. 
  26.  
  27. As with any compression or cacheing algorithm, there will always exist 
  28. pathological cases where one algorithm will perform badly while another will 
  29. perform well and visa versa.  We have tried to ensure that the best performance 
  30. is always achieved by using adaptive techniques, but even this can suffer in 
  31. unexpected cases.  For this reason we have still allowed manual selection of 
  32. algorithms where appropriate. 
  33.  
  34. Users of eariler versions of ZipStream (prior to v103e) can utilize the new 
  35. compression and cacheing options. In this case, existing compressed files will 
  36. need to be recompressed into a new format. i.e. 
  37.  
  38.   zsunpack *.* 
  39.  
  40.   zspack *.* 
  41.  
  42. To give you an idea of the new performance possible, here is some test results 
  43. with AmiPro. 
  44.  
  45.  AmiPro startup with no compression: 21 seconds 
  46.  
  47.  AmiPro startup with old compression algorithms: 60 seconds 
  48.  
  49.  AmiPro startup with new compression algorithms: 27 seconds 
  50.  
  51. ZSPack, by default, uses a standard set of compression parameters when 
  52. compressing files.  These parameters can optionally be configured by using the 
  53. Warp '/w number' option. 
  54.  
  55. New Warp values of '2', '3' and '4' may be applied in addition to the older 
  56. values of '5', '6', and '7'.  See the compression options subsection in the 
  57. ZipStream reference for further information. 
  58.  
  59.  
  60. ΓòÉΓòÉΓòÉ 3.2. New File System Options ΓòÉΓòÉΓòÉ
  61.  
  62. New options have been added to ZipStream that provide the following enhanced 
  63. functions: 
  64.  
  65.  1. Prevention of automatic compression of new files. 
  66.  
  67.  2. Prevention of recompression of modified compressed files i.e. compressed 
  68.     files that are modified will be returned to an uncompressed state. 
  69.  
  70.  3. Disabling of file rename tracking. 
  71.  
  72. Note:  These new options are recommended only in special cases where there is a 
  73. clear need for the functionality.  In most cases we suggest you operate 
  74. ZipStream in its default configuration. 
  75.  
  76. Using the new options 
  77.  
  78. To use the new options you must add 'option command switches' to the 
  79. 'run=c:\cbased\cbssvr.exe' line in your config.sys. 
  80.  
  81. Prevention of Automatic Compression of New Files 
  82.  
  83. This option is most useful when you wish to manually compress files with ZSPack 
  84. to establish your compressed environment and you do not want any further 
  85. automatic compression to take place. e.g. You have a Word Processing program 
  86. that you compressed with ZSPack, but you do not want any new files created by 
  87. the Word Processor to be compressed. 
  88.  
  89. To prevent compression of new files, add a '/P' switch to the cbssvr.exe line 
  90. in your config.sys as follows: 
  91.  
  92.   run=c:\cbased\cbssvr.exe /P 
  93.  
  94. Prevention of Recompression of Modified Compressed Files 
  95.  
  96. This option will disable the recompression of updated or modified files that 
  97. were previously compressed.  That is, a compressed file that is modified will 
  98. be saved in uncompressed form. 
  99.  
  100. To prevent recompression, add an '/R' switch to the cbssvr.exe line in your 
  101. config.sys as follows: 
  102.  
  103.   run=c:\cbased\cbssvr.exe /R 
  104.  
  105. Disabling of file rename tracking 
  106.  
  107. This option will prevent ZipStream from monitoring rename operations. Normally, 
  108. most Word Processors and similar programs update a file by writing to a 
  109. temporary file and then renaming it to the actual file name.  ZipStream will by 
  110. default, track these operations to ensure that new or modified files that are 
  111. renamed are automatically compressed. 
  112.  
  113. To prevent rename tracking, add a '/M' switch to the cbssvr.exe line in your 
  114. config.sys as follows: 
  115.  
  116.   run=c:\cbased\cbssvr.exe /M 
  117.  
  118. Note:  The above configuration options can be combined in any order e.g. 
  119.  
  120.   run=c:\cbased\cbssvr.exe /P /R /M 
  121.  
  122. will disable compression of new files, recompression of existing compressed 
  123. files and rename tracking. 
  124.  
  125.  
  126. ΓòÉΓòÉΓòÉ 3.3. New Option for ZipStream Compress ΓòÉΓòÉΓòÉ
  127.  
  128. The ZipStream Compress utility  (zspack.exe) now has an option to compress 
  129. files that appear to be already in a compressed format. 
  130.  
  131. Normally the utility will not attempt to compress files that appear to be 
  132. already in a foreign compressed format.  This default operation can be 
  133. overridden using a '/Z' switch e.g. 
  134.  
  135.   zspack /Z filenames 
  136.  
  137.  
  138. ΓòÉΓòÉΓòÉ 3.4. New Option for ZipStream Attach ΓòÉΓòÉΓòÉ
  139.  
  140. A new option has been added to the ZipStream Attach  utility (zsattach.exe) to 
  141. cause it to attempt to reattach paths based on data in its persistent 
  142. connection database. 
  143.  
  144. This operation is most useful when you have an attachment to a removable media 
  145. device such as a Diskette, that may not be present during system startup. 
  146.  
  147. To cause reattachment to occur run the utility with a '/R' switch e.g. 
  148.  
  149.   zsattach /r 
  150.  
  151.  
  152. ΓòÉΓòÉΓòÉ 4. Compression Ratios ΓòÉΓòÉΓòÉ
  153.  
  154. Many users ask for some idea of expected compression ratios that can be 
  155. achieved with ZipStream. 
  156.  
  157. Examples 
  158.  
  159. AmiPro for OS/2       54% or 2.2:1 
  160.  
  161. WinWord v2.0         50% or 2.0:1 
  162.  
  163. Various Games        50% or 2.0:1 
  164.  
  165. FaxWorks for OS/2      60% or 2.56:1 
  166.  
  167. IBM CSet++ V2.1       64% or 2.82:1 
  168.  
  169.  
  170. ΓòÉΓòÉΓòÉ 5. De-Installation of ZipStream ΓòÉΓòÉΓòÉ
  171.  
  172. De-Installation of ZipStream is fully automatic if you did a standard 
  173. installation. 
  174.  
  175. Warning: Prior to de-installation all compressed files should be decompressed 
  176. using the ZSUnpack utility. 
  177.  
  178. To De-Install ZipStream, follow these instructions 
  179.  
  180.  1. Insert the ZipStream diskette into the A: drive (or B: if applicable) 
  181.  
  182.  2. Open an OS/2 Command Window  or 
  183.  
  184.  3. Enter the following command a:zsinst -d (or b:zsinst -d ) 
  185.  
  186. That's all there is to it.  Should you have any problems, please contact our 
  187. technical support service. 
  188.  
  189.  
  190. ΓòÉΓòÉΓòÉ 5.1. Manual De-Installation ΓòÉΓòÉΓòÉ
  191.  
  192. These notes are provided to assist users who have modified the standard 
  193. installation. 
  194.  
  195. 1.  Edit your config.sys and remove the following lines 
  196.  
  197.  IFS=x:\cbased\cbs.ifs 
  198.  
  199.  RUN=x:\cbased\cbssvr.exe 
  200.  
  201. (where x: is your OS/2 boot drive) 
  202.  
  203. 2.  From the ZipStream installation diskette run 
  204.  
  205.  zsinst -u 
  206.  
  207.   This removes the WPS objects 
  208.  
  209. 3.  Reboot the system in the standard way. 
  210.  
  211. 4.  Delete the following files 
  212.  
  213.  x:\cbased\cbs4mbs.dll 
  214.  
  215.  x:\cbased\cbscompr.dll 
  216.  
  217.  x:\cbased\cbsfsf.dll 
  218.  
  219.  x:\cbased\cbsfsfs.dll 
  220.  
  221.  x:\cbased\cbs.ifs 
  222.  
  223.  x:\cbased\cbssvr.exe 
  224.  
  225.  x:\cbased\zspack.exe 
  226.  
  227.  x:\cbased\zsunpack.exe 
  228.  
  229.  x:\cbased\zsattach.exe 
  230.  
  231.  x:\cbased\zssync.exe 
  232.  
  233.  x:\cbased\zsstatus.exe 
  234.  
  235.  x:\cbased\zsquery.exe 
  236.  
  237.  x:\cbased\zsreg.exe 
  238.  
  239.  x:\cbased\zsdemon.exe 
  240.  
  241.   x:\cbased\zsfold.ico 
  242.  
  243.   x:\cbased\zstream.inf 
  244.  
  245.   x:\cbased\zsfold.ico 
  246.  
  247.   x:\cbased\zsnew.inf 
  248.  
  249.   x:\cbased\order.inf 
  250.  
  251.  (where x: is your OS/2 boot drive) 
  252.  
  253.  
  254. ΓòÉΓòÉΓòÉ 6. Evaluation Period Timeout ΓòÉΓòÉΓòÉ
  255.  
  256. If you are using an Evaluation Copy of ZipStream, the transparent 
  257. compression/decompression system will cease to operate after 45 days from 
  258. installation. 
  259.  
  260. Files can always be interactivly decompressed with the ZSUnpack utility after 
  261. the transparent compression system evaluation period has expired. 
  262.  
  263. We suggest that after the evaluation period is up you run the ZSUnpack command 
  264. across all your system drives to decompress any compressed files. 
  265.  
  266. e.g. zsunpack /s c:\ d:\ 
  267.  
  268.  
  269. ΓòÉΓòÉΓòÉ 7. Using ZipStream with ΓòÉΓòÉΓòÉ
  270.  
  271. This section provides hints, tips, warnings etc when using ZipStream with 
  272. various products. 
  273.  
  274. Basically, any product that runs with OS/2 can run compressed from a ZipStream 
  275. path. 
  276.  
  277. The only real areas where problems can occur is where you have an existing 
  278. product installed and then want to compress it.  Some products have information 
  279. keyed to their installation path so that compressing with the ZipStream utility 
  280. 'zspack' and then running from the compressed path, may lead to problems. 
  281.  
  282. We will continually expand this section based on user feedback and will try to 
  283. provide automated solutions where possible.  If you have a solution to a 
  284. problem with compressing an application, then let us know and we will add it to 
  285. this section in future updates. 
  286.  
  287.  
  288. ΓòÉΓòÉΓòÉ 7.1. DOS ΓòÉΓòÉΓòÉ
  289.  
  290. At this stage ZipStream is an OS/2 only 'on the fly' compression product.  We 
  291. will introduce some DOS support utilities in mid 1995, and we are planning to 
  292. develop a compatible 'on the fly'  version for DOS. 
  293.  
  294.  
  295. ΓòÉΓòÉΓòÉ 7.2. FaxWorks ΓòÉΓòÉΓòÉ
  296.  
  297. Installing and then using Faxworks from a ZipStream path can be done with no 
  298. problems.  However, the Faxworks Device Driver must be loaded from a non 
  299. ZipStream path. 
  300.  
  301. e.g. 
  302.  
  303. Assume Faxworks is installed to the ZipStream path Z:\FAXWORKS which is a 
  304. mirror of D:\FAXWORKS.  The Faxworks device driver FMD.SYS must be loaded from 
  305. the D: drive not the Z: drive. i.e. The line 
  306.  
  307.   DEVICE=Z:\FAXWORKS\FMD.SYS L 
  308.  
  309. in config.sys must be changed to 
  310.  
  311.   DEVICE=D:\FAXWORKS\FMD.SYS L 
  312.  
  313. Compressing an existing copy of Faxworks will be successful, however, after 
  314. compression you must setup the new path configuration information for the 
  315. Faxworks software. 
  316.  
  317. This can be achieved easily by starting Faxworks from an OS/2 command prompt 
  318. and issing the following command: 
  319.  
  320.  faxworks -L<newpath> 
  321.  
  322. where newpath is the Faxworks compressed path. e.g. 
  323.  
  324. Assume again that Faxworks is initially installed on the path d:\faxworks and 
  325. the compressed path is z:\faxworks.  Run the following command: 
  326.  
  327.  z:\faxworks\faxworks -Lz:\faxworks 
  328.  
  329.  
  330. ΓòÉΓòÉΓòÉ 7.3. Galactic Civilizations ΓòÉΓòÉΓòÉ
  331.  
  332. No problems occur with the normal use of Galactic Civilizations from a 
  333. ZipStream compressed path. 
  334.  
  335. Installing the gcfix04.exe update for Galactic Civilizations on a ZipStream 
  336. path will cause the application to fail.  This problem is under investigation. 
  337. In the meantime you can install the update using the following method. 
  338.  
  339.  1. Decompress the application with ZSUnpack. 
  340.  
  341.  2. Apply the fix to the host path.  That is, do not apply the fix to the 
  342.     ZipStream path. 
  343.  
  344.  3. Recompress the application again with ZSPack. 
  345.  
  346.  
  347. ΓòÉΓòÉΓòÉ 7.4. IBM Works ΓòÉΓòÉΓòÉ
  348.  
  349. No known compatibilty problems exist with the Works product,  However, it is 
  350. recommended that you install Works to a ZipStream path rather than compressing 
  351. it after installation. 
  352.  
  353. Currently when installing Works to a ZipStream path, not all files will be 
  354. automatically compressed.  We are looking into this situation and will provide 
  355. a solution as soon as possible.  In the meantime, after installation is 
  356. complete, re-compress the Works directory again with 'ZipStream Compress' 
  357. (ZSPack). 
  358.  
  359.  
  360. ΓòÉΓòÉΓòÉ 7.5. OS/2 2.11 ΓòÉΓòÉΓòÉ
  361.  
  362. No real compatibility problems exist between ZipStream and OS/2 2.11 as such. 
  363.  
  364. When accessing a shadow of a ZipStream path from the Workplace Shell, OS/2 can 
  365. display a dialog box similar to the one shown below. 
  366.  
  367. Click on 'OK' or 'Cancel' as the message can be safely ignored. 
  368.  
  369. This error is due to a problem with the OS/2 Workplace Shell.  A fix for this 
  370. is available from IBM in response to problem report APAR PJ11057. You can 
  371. obtain this fix as part of Fix Pak XR_A058.  This can be downloaded from IBM 
  372. OS/2 BBS sites around the world. 
  373.  
  374.  
  375. ΓòÉΓòÉΓòÉ 7.6. OS/2 Warp Version 3 ΓòÉΓòÉΓòÉ
  376.  
  377. No real compatibility problems exist between ZipStream and OS/2 Warp Version 3 
  378. as such. 
  379.  
  380. When accessing a shadow of a ZipStream path from the Workplace Shell, OS/2 can 
  381. display a dialog box similar to the one shown below 
  382.  
  383. Click on 'OK' or 'Cancel' as the message can be safely ignored. 
  384.  
  385. This error is due to a problem with the OS/2 Workplace Shell.  A problem report 
  386. has been raised by Carbon Based Software.  IBM Developers are currently working 
  387. on this problem and have advised that they hope to have a solution in the very 
  388. near future. 
  389.  
  390.  
  391. ΓòÉΓòÉΓòÉ 7.7. WORM Drives ΓòÉΓòÉΓòÉ
  392.  
  393. ZipStream is not suitable for use with WORM (Write Once Read Many) drives. The 
  394. reason for this that ZipStream uses lazy (background) compression, which means 
  395. that a file is first written to the disk in uncompressed form and then 
  396. compressed at a later time. 
  397.  
  398.  
  399. ΓòÉΓòÉΓòÉ 8. Problems Attaching to a Path ΓòÉΓòÉΓòÉ
  400.  
  401. Sometimes it is possible for ZSAttach to report an error when trying to attach 
  402. to an OS/2 path. 
  403.  
  404. The most likely cause for this is that your config.sys will have a statement 
  405. similar to the one shown below: 
  406.  
  407.   lastdrive=H 
  408.  
  409. This statement can be safely deleted from your config.sys. 
  410.  
  411.  
  412. ΓòÉΓòÉΓòÉ 9. Using ZSUnpack from OS/2 Boot Diskettes ΓòÉΓòÉΓòÉ
  413.  
  414. If you find yourself in the situation where you must boot OS/2 from diskettes 
  415. and need to access compressed files, you can use ZSUnpack from the ZipStream 
  416. Installation diskette to decompress any files you need to access. 
  417.  
  418. ZSUnpack requires several ZipStream support DLL's to function.  It is therefore 
  419. not sufficient to just copy the zsunpack.exe program to the OS/2 Installation 
  420. diskettes.  Running ZSUnpack from the ZipStream Installation diskette will 
  421. ensure that all the required DLL's are available. 
  422.  
  423. Due to the virtual memory requirements of ZipStream, we do not recommend that 
  424. you try to establish the ZipStream transparent compression system from boot 
  425. diskettes. 
  426.  
  427.  
  428. ΓòÉΓòÉΓòÉ 10. Trademarks ΓòÉΓòÉΓòÉ
  429.  
  430. ZipStream is a trademark of Carbon Based Software. 
  431.  
  432. IBM OS/2 are trademarks of International Business Machines Corporation. 
  433.  
  434. Pentium is a trademark of Intel Corporation. 
  435.  
  436. ALL TRADEMARKS AND SERVICE MARKS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS.